home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FishMarket 1.0
/
FishMarket v1.0.iso
/
fishies
/
151-175
/
disk_164
/
c-functions
/
strupp.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-06
|
190b
|
11 lines
#include <exec/types.h>
VOID strupp(pc) /* Make a string upper case only */
UBYTE *pc;
{
register int i=0;
while (pc[i] = upper(pc[i])) i++; /* Do untill /0 is found */
}